474044f6e0d6b436f417708cc047140fb7180461,NoHttp/src/com/yolanda/nohttp/BasicRequest.java,BasicRequest,setRequestBody,#String#,277

Before Change


	public void setRequestBody(String requestBody) {
		if (!TextUtils.isEmpty(requestBody))
			try {
				this.mRequestBody = URLEncoder.encode(requestBody, getParamsEncoding()).getBytes(NoHttp.CHARSET_UTF8);
			} catch (UnsupportedEncodingException e) {
				Logger.e(e);
			}

After Change


	public void setRequestBody(String requestBody) {
		if (!TextUtils.isEmpty(requestBody))
			try {
				this.mRequestBody = requestBody.getBytes(getParamsEncoding());
			} catch (UnsupportedEncodingException e) {
				Logger.e(e);
			}